home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1998 #2
/
Amiga Plus CD - 1998 - No. 2.iso
/
pd
/
musik
/
eagleplayer2.00
/
rexx
/
ep_iconify.dopus
< prev
next >
Wrap
Text File
|
1997-08-05
|
685b
|
33 lines
/* Eagleplayer control for DOPUS 4
(c) 1993-97 DEFECT Softworks
(de)activates Iconify mode
------------------------------------------------------------------------
Call as:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[ARexx] Eagleplayer2:Rexx/EP_Iconify.dopus {p} --arg--
where --arg-- maybe "Yes" or "No"
Flags: none required
*/
parse arg opusport Zustand
if zustand="" then zustand=-1
options results
if (pos('rexx_EP',SHOW('Ports')) = 0) then
do
address value opusport
toptext 'No Eagleplayer found'
exit
end
address 'rexx_EP'
iconify zustand
AHA=result
address value opusport
toptext 'Eagleplayer: '||AHA
exit